write txt python

39

write txt python -

with open('readme.txt', 'w') as f:
    f.write('readme')
Code language: JavaScript (javascript)

write to txt python -

# Program to write to text file using write() function
with  open("python.txt", "w") as file:
	content = "Hello, Welcome to Python Tutorial !! \n"
	file.write(content)
	file.close()


# Program to read the entire file (absolute path) using read() function
with open("C:/Projects/Tryouts/python.txt", "r") as file:
	content = file.read()
	print(content)
	file.close()

Comments

Submit
0 Comments